home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-06-28 | 423 b | 25 lines | [TEXT/CWIE] |
- // SystemWindowScreenPart.h
-
- #ifndef SystemWindowScreenPart_h
- #define SystemWindowScreenPart_h
-
- #ifndef ScreenPart_h
- #include "ScreenPart.h"
- #endif
-
- class SystemWindowScreenPart: public ScreenPart
- {
- private:
- WindowPtr window;
-
- public:
- SystemWindowScreenPart( WindowPtr theWindow )
- : window( theWindow )
- {}
-
- virtual bool Active() const;
- virtual void Click( const MouseDownEvent& ) const;
- };
-
- #endif
-